home *** CD-ROM | disk | FTP | other *** search
/ Day Cry / Day Cry CD.bin / oh_towns / taropyon / he386 / ccisrc / defs.h next >
C/C++ Source or Header  |  1994-09-20  |  454b  |  25 lines

  1. /*    CCIâvâìâOâëâÇùpâwâbâ_âtâ@âCâï    *********************************/
  2. #ifndef    _DEFS_H
  3. #define    _DEFS_H
  4.  
  5. #define    size_t    unsigned int
  6. #define    NULL    (0)
  7.  
  8. #define    NORMAL    (0)
  9. #define    ERR        (-1)
  10. #define    TRUE    (1)
  11. #define    FALSE    (0)
  12. #define    ON        (1)
  13. #define    OFF        (0)
  14. #define    LOOP    for(;;)
  15.  
  16. #define    STRLEN    (256)
  17.  
  18. #define    REG        register
  19. #define    UCHAR    unsigned char
  20. #define    UINT    unsigned int
  21. #define    SHORT    short
  22. #define    USHORT    unsigned short
  23.  
  24. #endif
  25.